aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/[groupId]/balances
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/groups/[groupId]/balances')
-rw-r--r--src/app/groups/[groupId]/balances/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/groups/[groupId]/balances/page.tsx b/src/app/groups/[groupId]/balances/page.tsx
index 33ba653..ab2c582 100644
--- a/src/app/groups/[groupId]/balances/page.tsx
+++ b/src/app/groups/[groupId]/balances/page.tsx
@@ -22,7 +22,6 @@ export default async function GroupPage({
const expenses = await getGroupExpenses(groupId)
const balances = getBalances(expenses)
const reimbursements = getSuggestedReimbursements(balances)
- console.log(reimbursements)
return (
<>
@@ -54,6 +53,7 @@ export default async function GroupPage({
reimbursements={reimbursements}
participants={group.participants}
currency={group.currency}
+ groupId={groupId}
/>
</CardContent>
</Card>